projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b6b47af
)
* lisp/emacs-lisp/autoload.el (autoload-find-destination):
author
Glenn Morris
<rgm@gnu.org>
Thu, 7 Jan 2016 00:56:47 +0000
(19:56 -0500)
committer
Glenn Morris
<rgm@gnu.org>
Thu, 7 Jan 2016 00:56:47 +0000
(19:56 -0500)
Avoid specifying the length of a time object (it has not been "2"
for some time).
lisp/emacs-lisp/autoload.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/autoload.el
b/lisp/emacs-lisp/autoload.el
index f21f8d63206c81861b213b2fd60083e1358de932..eed72655d18304887d051ef198c419b48be4cdbe 100644
(file)
--- a/
lisp/emacs-lisp/autoload.el
+++ b/
lisp/emacs-lisp/autoload.el
@@
-716,7
+716,7
@@
removes any prior now out-of-date autoload entries."
;; last-time is the time-stamp (specifying
;; the last time we looked at the file) and
;; the file hasn't been changed since.
- (and (listp last-time)
(= (length last-time) 2)
+ (and (listp last-time)
(not (time-less-p last-time file-time)))
;; last-time is an MD5 checksum instead.
(and (stringp last-time)